OutboundCallPrice that = (OutboundCallPrice) o;
if (Double.compare(that.basePrice, basePrice) != 0) return false;
return Double.compare(that.currentPrice, currentPrice) == 0;
}
}
OutboundCallPrice that = (OutboundCallPrice) o;
return Objects.equals(this.basePrice, that.basePrice) &&
Objects.equals(this.currentPrice, that.currentPrice);
}